home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install BOMB V1.0 (27 April 1995)
- ; This script is to be distributed with B O M B
- ; by Silicon Sircus
-
- (
- (set #install-script-choice
- (cat "\nYou may want this script (not only to go over its\n"
- "excellence again and again) if you're indecisive.\n\n"
- "You see - you may want to move it from where you\n"
- "are installing it now, in which case this script\n"
- "would come in useful because it could move all the\n"
- "files and set the assigns up for you.\n\n"
- @askoptions-help
- )
- )
- )
-
- (set @default-dest
- (askdir
- (prompt "Please select or make the directory where you would\n"
- " like to install the program and its data into")
- (help @askdir-help)
- (default "SYS:")
- )
- )
-
- (complete 0)
-
- (
- (working "Installing B O M B run script")
- (copyfiles
- (prompt "")
- (help @copyfiles-help)
- (source "BOMB")
- (dest @default-dest)
- (infos)
- )
- )
-
- (complete 1)
-
- (
- (working "Installing B O M B program")
- (copyfiles
- (prompt "")
- (help @copyfiles-help)
- (source "BOMBprogram")
- (dest @default-dest)
- (infos)
- )
- )
-
- (complete 10)
-
- (
- (working "Installing B O M B power up picture")
- (copyfiles
- (prompt "")
- (help @copyfiles-help)
- (source "PowerUps")
- (dest @default-dest)
- (infos)
- )
- )
-
- (complete 11)
-
- (
- (if (exists "BOMB.guide" (noreq) )
- (copyfiles
- (prompt "Would you like to install the cool documentation for\n"
- "B O M B which is an AmigaGuide?")
- (help @copyfiles-help)
- (source "BOMB.guide")
- (dest @default-dest)
- (confirm)
- (infos)
- )
- )
- )
-
- (complete 15)
-
- (
- (if (exists "InstallBOMB" (noreq) )
- (copyfiles
- (prompt "Would you like this install scipt?\n\n"
- "Ask for help for reasons why.")
- (help #install-script-choice)
- (source "InstallBOMB")
- (dest @default-dest)
- (confirm)
- (infos)
- )
- )
- )
-
- (complete 16)
-
- (
- (if (exists "LIBS/PowerPacker.library" (noreq) )
- (copyfiles
- (prompt "You need PowerPacker.library to run B O M B\n"
- "Would you like me to install version 35.344 for you?")
- (help @copyfiles-help)
- (source "LIBS/PowerPacker.library")
- (dest "LIBS:")
- (confirm)
- )
- )
- )
-
-
- (complete 17)
-
- (
- (makedir((cat @default-dest "/BOMBdata" )))
- )
-
- (
- (working "Installing B O M B game data")
- (copyfiles
- (prompt "")
- (help @copyfiles-help)
- (source "BOMBdata/")
- (dest (tackon @default-dest "BOMBdata/"))
- (all)
- )
- )
-
- (complete 99)
-
- (
- (startup @app-name
- (prompt "I need to put some assigns in your S:User-Startup"
- " so that B O M B knows where to look for its"
- " data and its fonts when you double click on it.\n\n"
- "Is that okay?\n\n"
- "(P.S. You must reset once the installation is"
- " FINISHED to make sure this happens)")
- (help @startup-help)
- (command "Assign >NIL: BOMB: "@default-dest)
- )
- )
-
- (complete 100)
-
- (exit)
-